home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / BNU22SR1.ZIP / src / binutils.2 / bfd / coff-h83.c < prev    next >
C/C++ Source or Header  |  1993-05-30  |  6KB  |  188 lines

  1. /* BFD back-end for Hitachi H8/300 COFF binaries.
  2.    Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  3.    Written by Steve Chamberlain, <sac@cygnus.com>.
  4.  
  5. This file is part of BFD, the Binary File Descriptor library.
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "bfd.h"
  22. #include "sysdep.h"
  23. #include "libbfd.h"
  24. #include "obstack.h"
  25. #include "coff/h8300.h"
  26. #include "coff/internal.h"
  27. #include "libcoff.h"
  28.  
  29. static reloc_howto_type howto_table[] = 
  30. {
  31.   HOWTO(R_RELBYTE,           0,  0,      8,  false, 0, true,  true,0,"8",    true, 0x000000ff,0x000000ff, false),
  32.   HOWTO(R_RELWORD,           0,  1,     16, false, 0, true,  true,0,"16",    true, 0x0000ffff,0x0000ffff, false),
  33.   HOWTO(R_RELLONG,           0,  2,     32, false, 0, true,  true,0,"32",    true, 0xffffffff,0xffffffff, false),
  34.   HOWTO(R_PCRBYTE,           0,  0,     8,  true,  0, false, true,0,"DISP8",    true, 0x000000ff,0x000000ff, true),
  35.   HOWTO(R_PCRWORD,           0,  1,     16, true,  0, false, true,0,"DISP16",   true, 0x0000ffff,0x0000ffff, true),
  36.   HOWTO(R_PCRLONG,           0,  2,     32, true,  0, false, true,0,"DISP32",   true, 0xffffffff,0xffffffff, true),
  37.   HOWTO(R_MOVB1,           0,  1,     16, false, 0, true,
  38.     true,0,"16/8",    true, 0x0000ffff,0x0000ffff, false),
  39.   HOWTO(R_MOVB2,           0,  1,     16, false, 0, true,
  40.     true,0,"8/16",    true, 0x0000ffff,0x0000ffff, false),
  41.   HOWTO(R_JMP1,           0,  1,     16, false, 0, true,  true,0,"16/pcrel",    true, 0x0000ffff,0x0000ffff, false),
  42.   HOWTO(R_JMP2,           0,  0,      8,  false, 0, true,  true,0,"pcrecl/16",    true, 0x000000ff,0x000000ff, false),
  43.  
  44. };
  45.  
  46.  
  47. /* Turn a howto into a reloc number */
  48.  
  49. #define SELECT_RELOC(x,howto) \
  50.   { x = howto_table[howto->size +(int)howto->pc_relative*3].type; }
  51.  
  52. #define BADMAG(x) H8300BADMAG(x)
  53. #define H8300 1        /* Customize coffcode.h */
  54. #define __A_MAGIC_SET__
  55.  
  56.  
  57.  
  58. /* Code to swap in the reloc */
  59. #define SWAP_IN_RELOC_OFFSET   bfd_h_get_32
  60. #define SWAP_OUT_RELOC_OFFSET bfd_h_put_32
  61. #define SWAP_OUT_RELOC_EXTRA(abfd, src, dst) \
  62.   dst->r_stuff[0] = 'S'; \
  63.   dst->r_stuff[1] = 'C'; 
  64.  
  65. /* Code to turn a r_type into a howto ptr, uses the above howto table
  66.    */
  67.  
  68. static void 
  69. DEFUN(rtype2howto,(internal, dst),
  70. arelent *internal AND
  71. struct internal_reloc *dst)
  72. {
  73.   switch (dst->r_type) {
  74.     case R_RELBYTE:
  75.       internal->howto =  howto_table+ 0;
  76.       break;
  77.     case R_RELWORD:
  78.       internal->howto =  howto_table+ 1;
  79.       break;    
  80.     case R_PCRBYTE:
  81.       internal->howto =  howto_table+3;
  82.       break;
  83.     case R_PCRWORD:
  84.       internal->howto =  howto_table+ 4;
  85.       break;
  86.     case R_MOVB1:
  87.       internal->howto = howto_table + 6;
  88.       break;
  89.     case R_MOVB2:
  90.       internal->howto = howto_table + 7;
  91.       break;
  92.     case R_JMP1:
  93.       internal->howto = howto_table +8;
  94.       break;
  95.  
  96.     case R_JMP2:
  97.       internal->howto = howto_table +9;
  98.       break;
  99.       
  100.     default:
  101. fprintf(stderr,"Bad reloc\n");
  102.       break;
  103.     }
  104. }
  105.  
  106. #define RTYPE2HOWTO(internal, relocentry) rtype2howto(internal,relocentry)
  107.  
  108.  
  109. /* Perform any necessaru magic to the addend in a reloc entry */
  110.  
  111.  
  112. #define CALC_ADDEND(abfd, symbol, ext_reloc, cache_ptr) \
  113.  cache_ptr->addend =  ext_reloc.r_offset;
  114.  
  115.  
  116. #define RELOC_PROCESSING(relent,reloc,symbols,abfd,section) \
  117.  reloc_processing(relent, reloc, symbols, abfd, section)
  118.  
  119. static void DEFUN(reloc_processing,(relent,reloc, symbols, abfd, section) ,
  120.        arelent *relent AND
  121.        struct internal_reloc *reloc AND
  122.        asymbol **symbols AND
  123.        bfd *abfd AND
  124.        asection *section)
  125. {
  126.   relent->address = reloc->r_vaddr;        
  127.   rtype2howto(relent,reloc);
  128.  
  129.   if (reloc->r_symndx > 0) 
  130.   {
  131.     
  132.     relent->sym_ptr_ptr = symbols + obj_convert(abfd)[reloc->r_symndx];
  133.  
  134.   }
  135.   else 
  136.   {
  137.     relent->sym_ptr_ptr = &(bfd_abs_symbol);
  138.   }
  139.   
  140.  
  141.   
  142.   relent->addend = reloc->r_offset;
  143.   
  144.   relent->address-= section->vma;
  145. /*  relent->section = 0;*/
  146. }
  147.  
  148. #include "coffcode.h"
  149.  
  150.  
  151. #undef  coff_bfd_get_relocated_section_contents 
  152. #undef coff_bfd_relax_section
  153. #define  coff_bfd_get_relocated_section_contents bfd_coff_reloc16_get_relocated_section_contents
  154. #define coff_bfd_relax_section bfd_coff_reloc16_relax_section
  155.  
  156. bfd_target h8300coff_vec =
  157. {
  158.   "coff-h8300",        /* name */
  159.   bfd_target_coff_flavour,
  160.   true,                /* data byte order is big */
  161.   true,                /* header byte order is big */
  162.  
  163.   (HAS_RELOC | EXEC_P |        /* object flags */
  164.    HAS_LINENO | HAS_DEBUG |
  165.    HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT),
  166.   ( SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
  167.     '_',            /* leading char */
  168.   '/',                /* ar_pad_char */
  169.   15,                /* ar_max_namelen */
  170.   1,                /* minimum section alignment */
  171. _do_getb64, _do_getb_signed_64, _do_putb64,
  172.      _do_getb32, _do_getb_signed_32, _do_putb32,
  173.      _do_getb16, _do_getb_signed_16, _do_putb16, /* data */
  174. _do_getb64, _do_getb_signed_64, _do_putb64,
  175.      _do_getb32, _do_getb_signed_32, _do_putb32,
  176.      _do_getb16, _do_getb_signed_16, _do_putb16, /* hdrs */
  177.  
  178.   {_bfd_dummy_target, coff_object_p, /* bfd_check_format */
  179.      bfd_generic_archive_p, _bfd_dummy_target},
  180.   {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */
  181.      bfd_false},
  182.   {bfd_false, coff_write_object_contents,    /* bfd_write_contents */
  183.      _bfd_write_archive_contents, bfd_false},
  184.  
  185.      JUMP_TABLE(coff),
  186.     COFF_SWAP_TABLE,
  187. };
  188.